home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / profile.arc / TESTER.C < prev    next >
Text File  |  1985-11-28  |  640b  |  40 lines

  1. #include <stdio.h>
  2. #define AZTEC
  3. #ifdef LATTICE
  4. #include "dos.h"
  5. #endif
  6. #ifndef LATTICE
  7.     unsigned int regs[4];
  8. #else
  9.     struct SREGS regs;
  10. #endif
  11. main(argc,argv)
  12. int argc;
  13. char *argv[];
  14. {
  15.     long i;
  16.     unsigned int regs[4];
  17.     unsigned ip;
  18.     ip = trick();
  19.     segread(
  20. #ifndef LATTICE
  21.             regs
  22. #else
  23.             ®s
  24. #endif
  25.                     );
  26.     fprintf(stderr,"cs=%x\nss=%x\nds=%x\nes=%x\nip=%x",
  27. #ifndef LATTICE
  28.             regs[0],regs[1],regs[2],regs[3]
  29. #else
  30.             regs.cs,regs.ss,regs.ds,regs.es
  31. #endif
  32.                                     ,ip);
  33.     for (i = 0; i < 250000L; i++)
  34.         nothing();
  35.     exit();
  36. }
  37. nothing()
  38. {
  39. }
  40.